STEP 9: Let's add another function parameter so we can customize the background, say color, and invitation name!
- Find the function DEFINITION: def·draw_card(theme, color):¬
- Add another parameter named name after color. Separate them with a comma.
- Find the function CALL: draw_card("moon", "aqua")¶
- Add a value for name: the string "Cadet Codester". Separate it from "aqua" with a comma!
To navigate the page using the TAB key, first press ESC to exit the code editor.